home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / clang / harderr.zip / HARDMAKE.BAT < prev    next >
DOS Batch File  |  1991-10-06  |  550b  |  23 lines

  1. @echo off
  2. GOTO BEGIN
  3.  
  4.      This batch file compiles and links the HARDERR.EXE program.
  5.  
  6.      It assumes that you have a functional MICROSOFT C working environment
  7.      with MASM on-line and that the Command Line is being used.
  8.  
  9.      The equivalent of the following environment is required:
  10.  
  11. PATH=D:\msc\bin;
  12. SET INCLUDE=D:\MSC\INCLUDE
  13. SET LIB=D:\MSC\LIB
  14. SET TMP=D:\MSC\TMP
  15. SET CL=/AL /Zp1
  16.  
  17. :BEGIN
  18.  
  19. CL   HARDERR.C /c
  20. MASM INT24,INT24,NUL,NUL
  21. LINK HARDERR INT24,,NUL,LLIBCE.LIB /E /NOD;
  22. Echo We Now Return to Normal Programming.
  23.